home *** CD-ROM | disk | FTP | other *** search
- ' Constant Definitions for Other Subprograms
- ' Copyright 1987 MicroHelp, Inc. - All Rights Reserved
-
- Defint A-Z
-
- Dim Mh.Terminator$(20)
-
- True=-1
- False=0
-
- Mh.Auto.Terminate=0 ' Set to non-zero for auto terminate of input when field is filled
- Mh.Terminators=16 ' Number of keys that terminate input.
- Mh.Terminator$(1)=Chr$(13) ' These are strings. For extended keys, add a
- ' Chr$(0) as in the "up arrow key" shown below
- Mh.Terminator$(2)=Chr$(0)+Chr$(72) ' up arrow
- Mh.Terminator$(3)=Chr$(0)+Chr$(80) ' down arrow
- Mh.Terminator$(4)=Chr$(0)+Chr$(73) ' PgUp
- Mh.Terminator$(5)=Chr$(0)+Chr$(81) ' PgDn
-
- ' Function keys are entered for your convenience. Just rem any that you
- ' don't want.
-
- Mh.Terminator$(06)=Chr$(0)+Chr$(59) ' F1
- Mh.Terminator$(07)=Chr$(0)+Chr$(60) ' F2
- Mh.Terminator$(08)=Chr$(0)+Chr$(61) ' F3
- Mh.Terminator$(09)=Chr$(0)+Chr$(62) ' F4
- Mh.Terminator$(10)=Chr$(0)+Chr$(63) ' F5
- Mh.Terminator$(11)=Chr$(0)+Chr$(64) ' F6
- Mh.Terminator$(12)=Chr$(0)+Chr$(65) ' F7
- Mh.Terminator$(13)=Chr$(0)+Chr$(66) ' F8
- Mh.Terminator$(14)=Chr$(0)+Chr$(67) ' F9
- Mh.Terminator$(15)=Chr$(0)+Chr$(68) ' F10
- Mh.Terminator$(16)=Chr$(27) ' Esc key
-
- Mh.Fill.Character=177 ' used to show "blanks" when doing input
- Word.Separator$=" .\/"+chr$(34) ' for moving from word to word during input
-
- Insert.State=False ' Default insert state for input start
-